paned: Initialize clip properly
authorMatthias Clasen <mclasen@redhat.com>
Wed, 16 Dec 2015 04:55:23 +0000 (23:55 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 16 Dec 2015 04:56:47 +0000 (23:56 -0500)
This was causing problems in the case when only one of the paned
children is visible - we would use uninitialized memory, leading
to invalide clip regions. Concretely, the signal tab in the inspector
would sometimes not render at all.

gtk/gtkpaned.c

index 4aa918420ffc1eeb101a71e09ff146e28a40ebac..531f5f0c70cf812974eb289ef1c5b32cbbcd944c 100644 (file)
@@ -1357,7 +1357,7 @@ gtk_paned_allocate (GtkCssGadget        *gadget,
   GtkWidget *widget = gtk_css_gadget_get_owner (gadget);
   GtkPaned *paned = GTK_PANED (widget);
   GtkPanedPrivate *priv = paned->priv;
-  GtkAllocation clip;
+  GtkAllocation clip = { 0 };
 
   if (priv->child1 && gtk_widget_get_visible (priv->child1) &&
       priv->child2 && gtk_widget_get_visible (priv->child2))
@@ -1477,7 +1477,6 @@ gtk_paned_allocate (GtkCssGadget        *gadget,
             child2_allocation.height = child2_height;
         }
 
-
       gtk_css_gadget_allocate (priv->handle_gadget,
                                &priv->handle_pos,
                                -1,